home *** CD-ROM | disk | FTP | other *** search
/ Power CD / Power CD ATARI-Rechner Lieben.iso / ALLERLEI / GOBJ_112 / SOURCE / MINIMAL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-03-05  |  208 b   |  12 lines

  1. program Minimal;
  2. { minimales ObjectGEM-Programm }
  3.  
  4.   uses OWindows;
  5.  
  6.   var MyApplication: TApplication;
  7.  
  8. begin
  9.   MyApplication.Init('MINI','Minimal');
  10.   MyApplication.Run;
  11.   MyApplication.Done
  12. end.